home *** CD-ROM | disk | FTP | other *** search
/ PC Player 2004 May / pc player 2004-05.iso / Demos / FarCry / Data1.cab / _738CBBE516DC489387F4F5091325EAD2 < prev    next >
Encoding:
Text File  |  2004-01-06  |  674 b   |  25 lines

  1. // ===============================================================
  2. // Vertex Program: 
  3. // Description: 
  4. // Last Update: 14/08/2003
  5. // Coder: Andrey Honich
  6. // ===============================================================
  7.  
  8.       #include "../CGVPMacro.csi"
  9.  
  10.  
  11.       VertAttributes { POSITION_3 TEXCOORD0_2 }
  12.       
  13.       MainInput { VIEWPROJ_MATRIX }
  14.       DeclarationsScript
  15.       {
  16.         IN_T0
  17.         OUT_T0_T1
  18.       }
  19.       PositionScript = PosCommon                 
  20.       CoreScript
  21.       {
  22.         OUT.Tex0.xy = IN.TexCoord0.xy;
  23.         OUT.Tex1.xy = dot(ModelViewProj._31_32_33_34, vPos) / dot(ModelViewProj._41_42_43_44, vPos);
  24.       }
  25.